home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TeX 1995 July
/
TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO
/
macros
/
latex209
/
contrib
/
rcs
/
style
/
rcs.el
< prev
Wrap
Text File
|
1993-11-01
|
2KB
|
61 lines
;;; $Id: rcs.el,v 1.4 1993/11/02 21:10:22 schrod Exp $
;;;----------------------------------------------------------------------
;;;
;;; AUC-TeX style hook for rcs style option
;;;
;;; (history at end)
(TeX-add-style-hook "rcs"
(function
(lambda ()
(LaTeX-add-environments "rcslog")
(TeX-add-symbols
;; public interface
"RCS" ; define \RCS... tag
"RCSTime" ; holds time of Date field
"RCSdate" ; typeset date
"RCSID" ; put RCS field in footline
"RCSdef" ; like \RCS, & output on console
"settime" ; local in env rcslog: set rev time
"rcsAuthor" ; maps uid to full name
"rcsLogIntro" ; intro text to rev log
;; protected interface
"RcsLoadHook" ; hook for configuration
"RcsEmptyValue" ; used as value for unexpanded fields
"RcsHandleDate" ; handler for Date field
"RcsLogStyle" ; define style of RCS log
"RcsLogHeading" ; heading of RCS log
"RcsLogDate" ; how the date is typeset
"RcsLogTime" ; how the time is typeset
;; internationalization
"RcsLogHeadingName" ; text in heading of RCS log
"RcsUnknownFile" ; used if Log value is empty
"RcsEmptyLog" ; used as empty Log text
"RcsLogRevision" ; `real name' of \Revision
;; protected observers -- must not be redefined
"RcsLoaded" ; load semaphor
"RCS_keyword" ; keyword of last parsed field
"RCS_value" ; value of last parsed field
"RCS_get_author" ; get the full name of an author
)
)))
;;;======================================================================
;;
;; $Log: rcs.el,v $
;; Revision 1.4 1993/11/02 21:10:22 schrod
;; New tag in public interface: \RCSdef
;;
;; Revision 1.3 1993/11/02 18:45:43 schrod
;; New tag in public interface: \RCSID
;;
;; Revision 1.2 1993/11/02 16:15:08 schrod
;; Adapted to interface of StyleRevision 2.3.
;;
;; Revision 1.1 1993/10/29 18:14:47 schrod
;; Preliminary version, doesn't care about macro args.
;;